Current Location: Home> Function Categories> acosh

acosh

Antihyperbolic cosine
Name:acosh
Category:math
Programming Language:php
One-line Description:Inverse hyperbolic cosine.

Definition and usage

acosh() function returns an inverse hyperbolic cosine of a number.

Example

Returns the inverse hyperbolic cosine value of different values:

 <?php
echo ( acosh ( 7 ) . "<br>" ) ;
echo ( acosh ( 56 ) . "<br>" ) ;
echo ( acosh ( 2.45 ) ) ;
?>

Try it yourself

grammar

 acosh ( x )
parameter describe
x Required. A number.

illustrate

Returns the inverse hyperbolic cosine value of x , that is, the value whose hyperbolic cosine is x .

Similar Functions
  • Tilt tan

    tan

    Tilt
  • Further method to sort ceil

    ceil

    Furthermethodtosort
  • Find the maximum value max

    max

    Findthemaximumvalue
  • Inverse hyperbolic sine asinh

    asinh

    Inversehyperbolicsin
  • Convert octal to decimal octdec

    octdec

    Convertoctaltodecima
  • Square root sqrt

    sqrt

    Squareroot
  • Calculate the oblique length of a straight triangle hypot

    hypot

    Calculatetheobliquel
  • Logarithm with base 10 log10

    log10

    Logarithmwithbase10
Popular Articles